home *** CD-ROM | disk | FTP | other *** search
/ Pluspack 1 / Caligari Corporation Pluspack1 1998.iso / TSX_SDK / tsxINC / tsxPolyh.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-28  |  15.6 KB  |  381 lines

  1. //******************************************************************************
  2. //    File: tsxPolyh.h
  3. //  Module: trueSpace eXtensions API
  4. //   Descr: Definition of tsxPOLYHEDRA
  5. //******************************************************************************
  6.  
  7. #ifndef TSXPOLYHEDRA_H
  8. #define TSXPOLYHEDRA_H
  9.  
  10. #include "tsxTypes.h"
  11.  
  12.  
  13. //------------------------------------------------------------------------------
  14. //------------------------------------------------------------------------------
  15.  
  16. // A tsxPOLYHEDRON is the only renderable simple geometric node type.
  17. // It is basically a geometric object constructed of polygonal faces.
  18. // It contains the following additional info beyond MNode:
  19. //     - Status flags
  20. //     - Vertices
  21. //     - Vertex Transformation Matrix
  22. //     - Faces
  23. //     - Materials
  24. //     - UV space mappings
  25. //     - Bounding Box
  26.  
  27. // trueSpace divides the traditional model transformation matrix of geometric
  28. // objects into two:
  29. //   - The Model-Axes, which specify the model-frame origin and axes orientation.
  30. //   - The Vertex Transformation Matrix, which specifies the transformation
  31. //     necessary to convert a Polyhedron's vertices into world space coordinates.
  32. //     The coordinates used to specify each vertex in the Polyhedron's vertex
  33. //     array are relative to the Vertex Transformation Matrix.
  34. //  See also tsxGNode.h and tsxMNode.h .
  35.  
  36.  
  37. //------------------------------------------------------------------------------
  38. //    Related Types
  39. //------------------------------------------------------------------------------
  40.  
  41. // Face -> Vertex data
  42. // Note: Use the TSXAPI memory routines (tsxMisc.h) to allocate
  43. //  the memory area for instances of this type.
  44. //  DO NOT use `new' or `malloc/calloc'!
  45. struct CtsxFaceVx
  46. {
  47.     int vix;  // Index into Polyhedron's Vertex Array (see `tsxPolyhGetVxArray').
  48.     int uvix; // Index into Polyhedron's UV Array.
  49.     int nextfaceix;  // Index (in Polyh) of next face containing this vertex.
  50.              // Use `tsxPolyhComputeFaceAdjacency' to set this field.
  51.     CtsxColor color;  //IF color.alpha == 0 THEN use material color
  52.              //OTHERWISE use vertex color.
  53. };
  54.  
  55. // Face.
  56. // Faces are one-sided polygons, with their vertices specified in clockwise
  57. // order when looking at the front of the polygon. The surface normal points
  58. // out of (or away from) the front.
  59. // Use `tsxPolyhGetFaceptrArray' to access a polyhedron's faces.
  60. // You must use `tsxFaceAlloc' or `tsxFaceCopy' to create instances of this type.
  61. struct CtsxFace
  62. {
  63.     short nbrVxs;    //Nbr of Vertices
  64.     CtsxFaceVx* pFVxs;    //Array of Face-Vertex data, Vertices in clockwise order.
  65.     unsigned char r1;    // reserved
  66.     unsigned char r2;    // reserved
  67.     void *r3;        // reserved
  68.     unsigned char normVxs[3];    //Indices into pFVxs of 3 vertices
  69.                 // ... to build Face Normal (see below).
  70.     unsigned short materialIdx;    //ID of Face's material
  71. };
  72.  
  73. // Note on the field tsxFace.normVxs ...
  74. // The three indices represent three face vertices in clockwise order,
  75. // defining two rays in the plane of the face:
  76. //    ORIGIN -> RAY1  and  ORIGIN -> RAY2
  77. // The cross-product of (ray1 x ray2) gives an unnormalized vector
  78. // perpandicular to the face, facing out. These vertices must not be colinear.
  79. #define tsx_NORM_VXS_ORIGIN  1
  80. #define tsx_NORM_VXS_RAY1    0
  81. #define tsx_NORM_VXS_RAY2    2
  82.  
  83.  
  84. // -----------------------------------------------------------------------
  85. // How to create a Polyhedron from scratch
  86. // ---------------------------------------
  87. //
  88. // The following pseudo-code demonstrates how to create a new Polyhedron.
  89. // Actual code should include error tests omitted here.
  90. //
  91. // ... Create the Polyhedron shell
  92. // tsxPOLYHEDRON* pPolyh;
  93. // tsxPolyhCreate( &pPolyh );
  94. // ... Vertices
  95. // CtsxVector3f* pVxs = tsxCalloc( iNbrVxs, sizeof(CtsxVector3f) );
  96. // { Set Vertex coordinates }
  97. // tsxPolyhSetVxs( pPolyh, iNbrVxs, pVxs );
  98. // ... Faces
  99. // CtsxFace** ppFaces = tsxCalloc( iNbrFaces, sizeof(CtsxFace*) );
  100. // for ( i=0; i<iNbrFaces; ++i ) {
  101. //      ... set Face-vertex info
  102. //      CtsxFaceVx* pFVxs = tsxCalloc( NbrVxsForFace[i], sizeof(CtsxFaceVx) );
  103. //      { set fields in pFVxs, especially vix = index into pVxs }
  104. //      ... set Face info
  105. //      CtsxFace* pFace = tsxFaceAlloc();
  106. //      pFace->pFVxs = pFVxs;
  107. //      pFace->nbrVxs = NbrVxsForFace[i];
  108. //      { set the normVxs field, etc. }
  109. //      ... Add face to Face-array
  110. //      ppFaces[i] = pFace;
  111. // }
  112. // tsxPolyhSetFaces( pPolyh, iNbrFaces, ppFaces );
  113. // ... Tell trueSpace to complete Polyhedron internals
  114. // tsxPolyhComputeFaceAdjacency( pPolyh );
  115. // tsxPolyhMarkTopologyChange( pPolyh );
  116. // tsxPolyhMarkGeomChange( pPolyh );
  117. // ... Initialize to default active material
  118. // tsxPolyhInitializeMaterials( pPolyh );
  119. // ... Add to scene and display
  120. // tsxSceneAddObject( (tsxGNODE*)pPolyh, e_tsxFALSE);
  121. // -----------------------------------------------------------------------
  122.  
  123.  
  124. //------------------------------------------------------------------------------
  125. //    Managers
  126. //------------------------------------------------------------------------------
  127.  
  128. // Creates an empty Polyhedron (0 vertices and faces).
  129. // The Model-Axes are set to the World Axes.
  130. // The Vertex Transformation Matrix is set to the identity matrix
  131. // with no translation.
  132. TSXAPIFN tsxERR tsxPolyhCreate( tsxPOLYHEDRON** ppPolyh );
  133.  
  134. // Clears a Polyhedron to 0 vertices & faces, freeing related structures.
  135. TSXAPIFN void tsxPolyhClear( tsxPOLYHEDRON* pPolyh );
  136.  
  137. // Tessellate the polyhedron.
  138. // The geometry of the polyhedron is modified so that all faces are triangles.
  139. // If the original polyhedron had some non-triangular faces, then the number
  140. // of faces will probably increase.  Actually replaces the internal face 
  141. // and related structures.
  142. TSXAPIFN tsxERR tsxPolyhTessellate( tsxPOLYHEDRON* pPolyh );
  143.  
  144.  
  145. //------------------------------------------------------------------------------
  146. //    Status
  147. //------------------------------------------------------------------------------
  148.  
  149. // The following functions inform trueSpace of changes in a Polyhedron.
  150. // These flags are checked when the object is next drawn, and some topological
  151. // information is computed and cached.
  152.  
  153. // Tell tS that this Polyhedron's Geometry has changed.
  154. TSXAPIFN void tsxPolyhMarkGeomChange( tsxPOLYHEDRON* pPolyh );
  155.  
  156. // Tell tS that this Polyhedron's Topology has changed.
  157. TSXAPIFN void tsxPolyhMarkTopologyChange( tsxPOLYHEDRON* pPolyh );
  158.  
  159. // Tell tS that this Polyhedron's Material(s) have changed.
  160. // Use after modifying UV entries, for example.
  161. TSXAPIFN void tsxPolyhMarkMaterialChange( tsxPOLYHEDRON* pPolyh );
  162.  
  163. // Tell tS that this Polyhedron's Vertex has changed.
  164. TSXAPIFN void tsxPolyhMarkVertexChange( tsxPOLYHEDRON* pPolyh , long vertex );
  165.  
  166.  
  167. //------------------------------------------------------------------------------
  168. //    Vertices
  169. //------------------------------------------------------------------------------
  170.  
  171. // Get the number of vertices (0 if not a Polyhedron).
  172. TSXAPIFN int tsxPolyhGetNbrVxs( tsxPOLYHEDRON* pPolyh );
  173.  
  174. // Get pointer to the array of vertices (0 if not a Polyhedron).
  175. // The Vertex coordinates are in the frame defined by
  176. // the Vertex Transformation Matrix.
  177. TSXAPIFN CtsxVector3f* tsxPolyhGetVxArray( tsxPOLYHEDRON* pPolyh );
  178.  
  179. // Get the Vertex Transformation Matrix. Returns pTxmx, if valid operation.
  180. // Note: This matrix includes scaling and shearing terms, so it is not
  181. // guaranteed to be orthogonal. Use `tsxUnMatrix3f' before inverting.
  182. TSXAPIFN CtsxTxmx3f* tsxPolyhGetVxTxmx(
  183.     tsxPOLYHEDRON* pPolyh,
  184.     CtsxTxmx3f* pTxmx ); //ptr to Txmx where result is copied.
  185.  
  186. // Assign a new vertex array to the Polyhedron.
  187. // The corresponding field in pPolyh is set to pVxs.
  188. // Clears old Vx array and frees memory, if any.
  189. // Note: Use the TSXAPI memory routines (tsxMisc.h) to allocate
  190. // the memory area (pVxs) for the Vertex Array
  191. // -- DO NOT use `new' or `malloc/calloc'!
  192. TSXAPIFN void tsxPolyhSetVxs(
  193.     tsxPOLYHEDRON* pPolyh,
  194.     int iNbrVxs,        // Number of Vxs (>= 0)
  195.     CtsxVector3f pVxs[] );    // ptr to Array. May be 0.
  196.  
  197. // Copies a new Vertex Transformation Matrix into pPolyh.
  198. TSXAPIFN void tsxPolyhSetVxTxmx(
  199.     tsxPOLYHEDRON* pPolyh,
  200.     CtsxTxmx3f* pTxmx ); //ptr to new Txmx copied into Polyh.
  201.  
  202.  
  203. //------------------------------------------------------------------------------
  204. //    Faces
  205. //------------------------------------------------------------------------------
  206.  
  207. // The face data is stored as an array of pointers to CtsxFace structures.
  208. // Always use the following functions to manage faces.
  209.  
  210. // Allocate a new face structure
  211. TSXAPIFN CtsxFace* tsxFaceAlloc();
  212.  
  213. // Delete's pFace and all related structures.
  214. TSXAPIFN void tsxFaceDelete( CtsxFace* pFace );
  215.  
  216. // Allocates new Face structure, assigning it to ppFaceCopy,
  217. // and Copies pFace and all related structures into it.
  218. TSXAPIFN tsxERR tsxFaceCopy( CtsxFace** ppFaceCopy, CtsxFace* pFace );
  219.  
  220. // Get the number of Faces (0 if not a Polyhedron).
  221. TSXAPIFN int tsxPolyhGetNbrFaces( tsxPOLYHEDRON* pPolyh );
  222.  
  223. // Get pointer to the array of Face-ptrs (0 if not a Polyhedron).
  224. TSXAPIFN CtsxFace** tsxPolyhGetFaceptrArray( tsxPOLYHEDRON* pPolyh );
  225.  
  226. // Assign a new Face-ptr array to the Polyhedron.
  227. // The corresponding field in pPolyh is set to pFaces.
  228. // Clears old Faces and array and frees memory, if any.
  229. // Note: Use the TSXAPI memory routines (tsxMisc.h) to allocate
  230. // the memory area (pFaces) for the Face Array
  231. // -- DO NOT use `new' or `malloc/calloc'!
  232. TSXAPIFN void tsxPolyhSetFaces(
  233.     tsxPOLYHEDRON* pPolyh,
  234.     int iNbrFaces,        // Number of Faces (>= 0)
  235.     CtsxFace* pFaces[] );    // Array of ptrs. May be 0.
  236.  
  237. // Uses pFace->normVxs to compute face normal of pFace in pPolyh.
  238. // Normal returned in pNorm, in the frame defined by the 
  239. // Vertex Transformation Matrix.
  240. TSXAPIFN void tsxPolyhGetFaceNormal(
  241.     tsxPOLYHEDRON* pPolyh,
  242.     CtsxFace* pFace,
  243.     CtsxVector3f* pNorm ); //ptr to struct where result is copied.
  244.  
  245. // Sets up the `nextfaceix' fields in CtsxFaceVx structs.
  246. // Call after all the other Face-Vertex data has been set for all faces.
  247. TSXAPIFN tsxERR tsxPolyhComputeFaceAdjacency( tsxPOLYHEDRON* pPolyh );
  248.  
  249.  
  250. //------------------------------------------------------------------------------
  251. //    UV Space
  252. //------------------------------------------------------------------------------
  253.  
  254. // Every polyhedron maintains an array of UV entries.
  255. // CtsxFaceVx.uvix is an index into this array, giving the UV coordinates
  256. // for that vertex for the corresponding face's material.
  257.  
  258. // Get the number of entries in UV-array (0 if not a Polyhedron).
  259. TSXAPIFN int tsxPolyhGetNbrUV( tsxPOLYHEDRON* pPolyh );
  260.  
  261. // Get pointer to the UV-array (0 if not a Polyhedron).
  262. TSXAPIFN CtsxUV* tsxPolyhGetUVArray( tsxPOLYHEDRON* pPolyh );
  263.  
  264. // Assign a new UV array to the Polyhedron.
  265. // The corresponding field in pPolyh is set to pUV.
  266. // Clears old Faces and array and frees memory, if any.
  267. // Note: Use the TSXAPI memory routines (tsxMisc.h) to allocate
  268. // the memory area (pUV) for the UV Array -- DO NOT use `new' or `malloc/calloc'!
  269. TSXAPIFN void tsxPolyhSetUVArray(
  270.     tsxPOLYHEDRON* pPolyh,
  271.     int iNbrUV,        // Number of UV entries (>= 0)
  272.     CtsxUV *pUV );    // ptr to UV-Array. May be 0.
  273.  
  274.  
  275. //------------------------------------------------------------------------------
  276. //    Painting/Materials
  277. //------------------------------------------------------------------------------
  278.  
  279. // Assigns active material to entire Polyhedron.
  280. // Call this function AFTER setting/modifying a polyhedron's geometry,
  281. // and BEFORE painting faces or vertices.
  282. // Use other material functions to specify specific materials.
  283. TSXAPIFN tsxERR tsxPolyhInitializeMaterials( tsxPOLYHEDRON* pPolyh );
  284.  
  285. // Give entire pPolyh the material pMatrl. Remove old materials.
  286. // Note: A copy of pMatrl is created and assigned to the Polyhedron.
  287. //       Caller is responsible for managing pMatrl.
  288. TSXAPIFN void tsxPolyhPaint( tsxPOLYHEDRON* pPolyh, tsxMATERIAL* pMatrl );
  289.  
  290. // Paint face with a material.
  291. // Returns e_tsxFALSE on failure or if object not changed.
  292. // Note: A copy of pMatrl is created and assigned to the Polyhedron.
  293. //       Caller is responsible for managing pMatrl.
  294. TSXAPIFN tsxBOOL tsxPolyhPaintFace(
  295.     tsxPOLYHEDRON* pPolyh,
  296.     int iFaceIndex,        //Index of face to be painted in pPolyh
  297.     tsxMATERIAL* pMatrl,    //New material to paint on face
  298.     tsxBOOL bClearVxColors    //e_tsxTRUE if Vertex colors should be cleared.
  299.     );
  300.  
  301. // Paint vertex with a color.
  302. // Returns e_tsxFALSE on failure or if object not changed.
  303. // Note: A copy of pColor is created and assigned to the Polyhedron.
  304. //       Caller is responsible for managing pColor.
  305. TSXAPIFN tsxBOOL tsxPolyhPaintVertex(
  306.     tsxPOLYHEDRON* pPolyh,
  307.     int iVxIndex,        //Index of face to be painted in pPolyh
  308.     CtsxColor* pColor        //New color to paint on face
  309.     );
  310.  
  311. // Use this function to access the material assigned to a face.
  312. // pMatrl is a pointer to a Material object created through one of the
  313. // tsxMaterialCreate functions. The face's material, if any, is copied
  314. // into this structure.
  315. // Returns e_tsxFALSE on failure or if face does not have a material.
  316. TSXAPIFN tsxBOOL tsxPolyhGetMaterial(
  317.     tsxPOLYHEDRON* pPolyh,
  318.     unsigned short materialIdx,  //From CtsxFace.materialIdx
  319.     tsxMATERIAL* pMatrl         //Material copied into this structure
  320.     );
  321.  
  322. // Photo-render a face in the active view.
  323. TSXAPIFN tsxERR tsxPolyhPhrenderFace( tsxPOLYHEDRON* pPolyh, int iFaceIndex );
  324.  
  325.  
  326. //------------------------------------------------------------------------------
  327. //    Primitive Polyhedron Shapes
  328. //------------------------------------------------------------------------------
  329.  
  330. // These are the same functions as used in the tS interface.
  331. // They all create an object centered at the origin,
  332. // painted with the currently active material.
  333. // Where there is no specific input, the X, Y, Z dimensions default to 2.
  334. // Since these are all polyhedra, with a piecewise linear approximation
  335. // of curved surfaces, the resolution of this approximation is controlled
  336. // by the NbrLongitudes and NbrLattitudes parameters.
  337.  
  338. // Creates a sphere sitting on the XY plane, with Z as the vertical axis.
  339. TSXAPIFN tsxPOLYHEDRON* tsxCreateSphere(
  340.     int NbrLongitudes,    // # Longs (Min = 3)
  341.     int NbrLattitudes,    // # Latts (Min = 2)
  342.     float radius );
  343.  
  344. // Creates a Cylinder with the base in the XY plane and Z as the vertical axis.
  345. TSXAPIFN tsxPOLYHEDRON* tsxCreateCylinder(
  346.     int NbrLongitudes,    // # Longs (Min = 3)
  347.     int NbrLattitudes,    // # Latts (Min = 2)
  348.     float topRadius,    // Top radius
  349.     float botRadius,    // Base radius
  350.     float height );
  351.  
  352. // Creates a Cone (really a cylinder with a very very small top)
  353. // with the base in the XY plae, and Z as the vertical axis.
  354. TSXAPIFN tsxPOLYHEDRON* tsxCreateCone(
  355.     int NbrLongitudes,    // # Longitudes (Min = 3)
  356.     int NbrLattitudes,    // # Lattitudes (Min = 2)
  357.     float botRadius,    // Base radius
  358.     float height );
  359.  
  360. // Creates a cube aligned with the World axes.
  361. TSXAPIFN tsxPOLYHEDRON* tsxCreateCube(
  362.     int nbrSections,
  363.     float x,
  364.     float y,
  365.     float z );
  366.  
  367. // Create a torus with Z as the axis.
  368. TSXAPIFN tsxPOLYHEDRON* tsxCreateTorus(
  369.     int NbrLongitudes,    // # Longitudes (Min = 3)
  370.     int NbrLattitudes,    // # Lattitudes (Min = 3)
  371.     float innerRadius ); // Inner radius (0 < radius < 1.0)
  372.  
  373. // Creates rectangular plane in XY plane.
  374. TSXAPIFN tsxPOLYHEDRON* tsxCreatePlane(
  375.     int nbrXrects,    // # rects in X direction (Min = 1)
  376.     int nbrYrects );    // # rects in Y direction (Min = 1)
  377.  
  378.  
  379. //******************************************************************************
  380. #endif // TSXPOLYHEDRA_H
  381.